web3.js web3.eth.abi.encodeFunctionCall
web3.eth.abi.encodeFunctionCall(jsonInterface, parameters);
パラメータ
1. jsonInterface - Object
関数の JSON インタフェースオブジェクト
2. parameters - Array
エンコードするパラメータ
戻り値
String
ABI エンコードされた function call
= 関数シグネチャ + パラメータ
サンプルコード
code:example.js
web3.eth.abi.encodeFunctionCall({
name: 'myMethod',
type: 'function',
inputs: [{
type: 'uint256',
name: 'myNumber'
},{
type: 'string',
name: 'myString'
}]
"0x24ee0097000000000000000000000000000000000000000000000000000000008bd02b7b0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000748656c6c6f212500000000000000000000000000000000000000000000000000"
参考